home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_NewFile():
- return {
- 'Width': 4.800000,
- 'Height': 4.800000,
- 'ColorDepth': 4,
- 'DimensionUnits': 1,
- 'ResolutionUnits': 0,
- 'Resolution': 300.000000,
- 'Transparent': App.Constants.Boolean.true,
- 'VectorBackground': App.Constants.Boolean.false
- }
-
- def Do(Environment):
- App.Do( Environment, 'NewFile', Preset_NewFile())
-
-